home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Audio, Video & Photo / Audacity 1.3.5 / audacity-win-unicode-1.3.5.exe / {app} / Plug-Ins / pluck.ny < prev    next >
Text File  |  2008-02-04  |  1KB  |  33 lines

  1.  
  2. ;nyquist plug-in
  3. ;version 3
  4. ;type generate
  5. ;name "Pluck..."
  6. ;action "Generating pluck sound..."
  7. ;info "modified by David R. Sky\nReleased under terms of the GNU General Public License version 2 \nMIDI values for C notes: 36, 48, 60 [middle C], 72, 84, 96."
  8.  
  9. ;control p "Pluck MIDI pitch" int "" 60 1 127
  10. ;control fade "Fade-out type" choice "abrupt,gradual" 0
  11. ;control dur "Duration [seconds]" real "" 1 0.1 30
  12.  
  13. ; original pluck.ny modified by David R.Sky October 2007
  14. ; [vastly simplified later]
  15. ; to give user option to use [default] abrupt or gradual fade-out,
  16. ; and ability to make pluck sound up to 30 seconds in duration.
  17. ; Modified January 2007 to use 'snd-pluck' by edgar-rft@web.de
  18. ; instead of the Nyquist 'pluck' function, and normalise to 0.8
  19. ; maximum amplitude. As defined in Audacity, 'pluck' has 
  20. ; incorrect length duration and clipping at the start which gives
  21. ; rise to DC offset. Using 'snd-pluck' avoids the clipping and 
  22. ; offset so we don't need the highpass8 filter that we used before.  
  23.  
  24.  
  25. ; set final-amp for abrupt or gradual fade
  26. (setf final-amp (if (= fade 1) 0.001 0.000001))
  27.  
  28. (let* ((pluck-sound (snd-pluck *sound-srate* (step-to-hz p) 0 dur final-amp))
  29.        (max-peak (peak pluck-sound ny:all)))
  30.   (scale (/ 0.8 max-peak) pluck-sound))  
  31.   
  32.   
  33. ;arch-tag: bebc6cb8-3bb0-42d5-a467-df6bd1a7f1e4